home *** CD-ROM | disk | FTP | other *** search
/ Beginning Mac Programming / Beginning Mac Programming.bin / Open Me for REALbasic 3 / REALbasic 3.2 / Example Projects / Applications / DataCrab 2.0r1 Emulator / Fak-Paks / HTML Definitions Fak-Pak < prev    next >
Text File  |  2001-05-23  |  65KB  |  479 lines

  1.         HTML Definition Fak-Pak is installed. (use: "html <tag>")
  2. html <!-->    <Comment> The comment tag includes the actual comment text. Any instance of --> ends the comment. Whitespace may be included between the -- and the > but not between the <! and the first --.    •
  3. example <!-->    <!-- comment text -->     •
  4. html <    <Escape Sequences> Escape sequences are used to enter characters such as <, >, &, and " into HTML documents.    •
  5. html <Escape Sequences>    Examples: <  >  &  "     ®  ©  &ensp  &emsp  &endash  &emdash     •
  6. html <A>    <Anchor> The anchor tag defines either a link or an anchor in a document. The anchor tag must contain either a NAME attribute or an HREF attribute, or both.    •
  7. example <A>    <A NAME="anchor-name"> & <A HREF="#anchor-name">link-text</A> & <A HREF="url">link-text</A> & <A HREF="url#anchor-name">link-text </A>    •
  8. html <ABBREV>    <Abbreviation> The abbreviation tag defines an abbreviation. It is typically displayed just like normal text, but is used by automatic indexers.    •
  9. example <ABBREV>    <ABBREV> text </ABBREV>    •
  10. html <ACRONYM>    <Acronym> The acronym tag defines an acronym. It is typically displayed just like normal text, but is used by automatic indexers.    •
  11. example <ACRONYM>    <ACRONYM> text </ACRONYM>    •
  12. html <ADDRESS>    <Address> The address tag defines text that gives an address or other contact information. It is typically displayed in italics, slightly indented, and is used by automatic indexers. See also: <ADDRESS NOWRAP>    •
  13. example <ADDRESS>    <ADDRESS> text </ADDRESS>  <ADDRESS NOWRAP> text </ADDRESS>    •
  14. html <ADDRESS NOWRAP>    The NOWRAP attribute stops the browser from wrapping except where <BR>'s are.    •
  15. html <APPLET>    The Java applet tag runs a Java applet referred to by a URL. applet-content consists of optional PARAM tags, ordinary text & markup to be displayed by browsers that cannot run Java applets, and a TEXTFLOW tag if no ordinary text and markup is included    •
  16. example <APPLET>    <APPLET attributes> applet-content </APPLET>    •
  17. html <APPLET attributes>    Use the syntax: <APPLET "name of attribute"> for details of each of the various attributes.    •
  18. html <APPLET CODEBASE>    What "base" should be used when resolving source relative URLs. <APPLET CODEBASE="base">     •
  19. html <APPLET CODE>    The URL of the applet to be run. <APPLET CODE="code">    •
  20. html <APPLET NAME>    The name of the applet, or Identifies an applet to other applets within the HTML page. <APPLET NAME="applet name"> & <APPLET NAME=name>     •
  21. html <APPLET ALIGN>    Here "alignment" should be one of LEFT, RIGHT, TOP, MIDDLE, or BOTTOM. <APPLET ALIGN="alignment">    •
  22. html <APPLET ALT>    Here "text" is the text to be displayed by a browser that does not support applets. <APPLET ALT="text">    •
  23. html <APPLET HEIGHT>    The height of the applet display area in pixels. <APPLET HEIGHT=number>    •
  24. html <APPLET WIDTH>    The width of the applet display area in pixels. <APPLET WIDTH=number>    •
  25. html <APPLET HSPACE>    The space, in pixels, to leave to the left and right of the applet display area. <APPLET HSPACE=number>    •
  26. html <APPLET VSPACE>    The space, in pixels, to leave above and below the applet display area. <APPLET VSPACE=number>    •
  27. html <APPLET DOWNLOAD>    This specifies the order in which they are downloaded. <APPLET DOWNLOAD=number>    •
  28. html <APPLET TITLE>    Specifies an advisory title string. <APPLET TITLE=text>    •
  29. html <AREA>    <Area> The area tag, valid only within a MAP, defines areas that act as hotspots within an image.    •
  30. example <AREA>    <AREA SHAPE="shape" ALT="text" CO-ORDS="co-ords" HREF="URL"> & <AREA SHAPE="shape" ALT="text" CO-ORDS="co-ords" HREF="URL" TARGET="target window name"> & <AREA SHAPE="shape" ALT="text" CO-ORDS="co-ords" NOHREF>    •
  31. html <AU>    <Author> The author tag defines text that names the author of a document. It is typically displayed just like normal text, but is used by automatic indexers.    •
  32. example <AU>    <AU> text </AU>    •
  33. html <AUTHOR>    The author tag defines text that names the author of a document. It is typically displayed just like normal text, but is used by automatic indexers.    •
  34. example <AUTHOR>    <AUTHOR> text </AUTHOR>    •
  35. html <B>    <Bold> The bold tag defines text that should be shown in boldface. It can be nested with other idiomatic or typographic tags but some browsers will respect only the innermost tag.    •
  36. example <B>    <B> text </B>    •
  37. html <BANNER>    <Banner> The banner element defines an image or block of text that does not scroll with the document and is displayed at the top of the screen as the user scrolls through the document.    •
  38. example <BANNER>    <BANNER attributes </BANNER> Details of the attributes are not yet available -- use a BANNER attribute in the <LINK> section of the <HEAD>     •
  39. html <BASE>    <Base> The base tag, which is valid only in the HEAD section, defines the base address of an HTML document, which is used to determine the full address of relative URL's that appear in the document.    •
  40. example <BASE>    <BASE HREF="base address"> & <BASE TARGET="default target">    •
  41. html <BASEFONT>    <Base Font> The base font tag defines the base that relative FONT changes are based on. (Default is 3.)    •
  42. example <BASEFONT>    <BASEFONT SIZE=number>    •
  43. html <BGSOUND>    <Background Sound> The background sound tag identifies a .wav, .au, or.mid resource that will be played when the page is opened.    •
  44. example <BGSOUND>    <BGSOUND SRC="URL"> & <BGSOUND SRC="URL"LOOP=n>    •
  45. html <BGSOUND LOOP>    The optional LOOP attribute will cause the resource to be played n times.    •
  46. example <BGSOUND LOOP>    <BGSOUND SRC="URL"LOOP=n> LOOP="INFINITE" will cause the resource to be played continuously as long as the page is open.    •
  47. html <BIG>    <Big Text> The big text tag defines text that should be displayed in a larger font than usual.    •
  48. example <BIG>    <BIG> text </BIG>    •
  49. html <BLINK>    The blink tag highlights the text by having it blink on and off.    •
  50. example <BLINK>    <BLINK> text </BLINK>    •
  51. html <BLOCKQUOTE>    <BQ> The block quote tag defines text that is quoted from elsewhere. Many browsers (including Netscape) display it in an indented block surrounded by blank lines.    •
  52. example <BLOCKQUOTE>    <BLOCKQUOTE> text </BLOCKQUOTE>  & <BQ> text </BQ> & <BQ CLEAR = attributes> text </BQ> & <BQ NOWRAP> text </BQ>    •
  53. html <BQ CLEAR>    In HTML 3.0, the CLEAR attribute is used to position a quote after a graphic: it can be LEFT, RIGHT, or ALL and specifies which margin should be clear. <BQ CLEAR = attributes> text </BQ>    •
  54. html <BQ NOWRAP>    The NOWRAP attribute stops the browser from wrapping except at a BR tag. <BQ NOWRAP> text </BQ>     •
  55. html <BQ>    See: html <BLOCKQUOTE>    •
  56. html <BODY>    <Body> The body tag introduces the body of the document. It should appear after the head section and occupy the remainder of the document.    •
  57. example <BODY>    <BODY> document-body </BODY> & See also: <BODY attributes>    •
  58. html <BODY attributes>    the syntax use to retrive factoids on the attributes of the <BODY> tag, example: <BODY BACKGROUND>    •
  59. html <BODY BACKGROUND>    The BACKGROUND attribute specifies an image file to use as the background for the page. <BODY BACKGROUND="URL"> document-body </BODY>    •
  60. html <BODY BGCOLOR>    The BGCOLOR attribute specify the colours to be used for the background. <BODY BGCOLOR="#rrggbb"> document-body </BODY> & <BODY BGCOLOR="colorname"> document-body </BODY>    •
  61. html <BODY TEXT>    The TEXT attribute specify the colours to be used for the text. <BODY TEXT="#rrggbb"> document-body </BODY> & <BODY TEXT="colorname"> document-body </BODY>    •
  62. html <BODY LINK>    The LINK attribute specify the colours to be used for the LINK. (An link is active for the moment the user clicks on it, & changes colour to confirm it has been clicked.) See: example <BODY LINK>    •
  63. example <BODY LINK>    <BODY LINK="#rrggbb"> document-body </BODY> & <BODY LINK="colorname"> document-body </BODY>    •
  64. html <BODY ALINK>    The ALINK attribute specify the colours to be used for the ALINK. (An link is active for the moment the user clicks on it, & changes colour to confirm it has been clicked.) See: example <BODY ALINK>    •
  65. example <BODY ALINK>    <BODY ALINK="#rrggbb"> document-body </BODY> & <BODY ALINK="colorname"> document-body </BODY>    •
  66. html <BODY VLINK>    The VLINK attribute specify the colours to be used for the VLINK. (An link is active for the moment the user clicks on it, & changes colour to confirm it has been clicked.) See: example <BODY VLINK>    •
  67. example <BODY VLINK>    <BODY VLINK="#rrggbb"> document-body </BODY> & <BODY VLINK="colorname"> document-body </BODY>    •
  68. html <BODY LEFTMARGIN>    The LEFTMARGIN attribute set the margin at the left of the document, in pixels. <BODY LEFTMARGIN=margin> document-body </BODY>    •
  69. html <BODY TOPMARGIN>    The TOPMARGIN attributes set the margin at the top of the document, in pixels. <BODY TOPMARGIN=margin> document-body </BODY>    •
  70. html <BODY BGPROPERTieS>    The BGPROPERTIES attribute causes the background image (set with the BACKGROUND attribute) to remain fixed as the document scrolls: a watermark effect. See: example <BODY BGPROPERTieS>    •
  71. example <BODY BGPROPERTieS>    <BODY BGPROPERTieS="FIXED"> document-body</BODY>    •
  72. html <BR>    <Line Break> The line break tag breaks the current line of text. It's not necessary inside a PRE element. There is no </BR> tag.    •
  73. example <BR>    <BR> & <BR CLEAR> & <BR CLEAR="type">    •
  74. html <BR CLEAR>    CLEAR attribute type can be LEFT to break until there is nothing to the left, RIGHT for the right side, all for break until both sides are clear & NONE for a normal break.    •
  75. html <CAPTION>    <Caption> The caption tag defines the caption of a figure or table. It is valid only within FIG or TABLE tags.    •
  76. example <CAPTION>    <CAPTION> text </CAPTION> & <CAPTION ALIGN=alignment> text </CAPTION> & <CAPTION VALIGN=vertical-alignment> text </CAPTION>    •
  77. html <CAPTION ALIGN>    The ALIGN attribute arranges for the caption to be at the TOP or BOTTOM of the table or figure. See: <CAPTION ALIGN> 2    •
  78. html <CAPTION ALIGN> 2    The ALIGN attribute sets the alignment of the caption within the table or figure border. It can be LEFT, RIGHT, or CENTER.    •
  79. example <CAPTION ALIGN>    <CAPTION ALIGN=alignment> text </CAPTION>    •
  80. html <CAPTION VALIGN>    The VALIGN attribute arranges for the caption to be at the TOP or BOTTOM of the table or figure.    •
  81. example <CAPTION VALIGN>    <CAPTION VALIGN=vertical-alignment> text </CAPTION>    •
  82. html <CENTER>    <Center> The center tag defines text that should be centered. Example: <CENTER> text</CENTER>    •
  83. html <CITE>    <Citation> The citation tag defines text that cites a book or other work - most browsers will display it in italics. It can be nested with other idiomatic/typographic tags but some browsers will respect only the innermost tag    •
  84. example <CITE>    <CITE> text </CITE>    •
  85. html <CODE>    The code tag defines text that should be shown in a fixed width font. It can be nested with other idiomatic or typographic tags but some browsers will respect only the innermost tag. See: <CODE> 2    •
  86. html <CODE> 2    Many browsers use the same font for the KBD, SAMP, TT & CODE tags. For many lines of fixed width text, with the line breaks and other whitespace specified by the page author, use the <PRE> tag.    •
  87. example <CODE>    <CODE> text </CODE>    •
  88. html <COL>    <Table Column> The <COL> tag sets the properties of one table column at a time. Do not use this tag with a COLGROUP element.    •
  89. example <COL>    <COL> content </COL> & <COL ALIGN=alignment> content </COL> & <COL SPAN=number> content </COL>    •
  90. html <COL ALIGN>    The ALIGN attribute specifies the text alignment in the cells within the colums. The values for "alignment" are LEFT, MIDDLE & RIGHT and the default is MIDDLE.    •
  91. example <COL ALIGN>    <COL ALIGN=alignment> content </COL>    •
  92. example <COL SPAN>    <COL SPAN=number> content </COL>    •
  93. html <COLGROUP>    <Table Column Group> The COLGROUP tag sets the properties of one or more table columns. ( Attributes = SPAN, WIDTH, HALIGN, VALIGN & ALIGN )    •
  94. example <COLGROUP>    A few examples: <COLGROUP> column data </COLGROUP> & <COLGROUP ALIGN="align"> column data </COLGROUP> & <COLGROUP WIDTH="width"> column data </COLGROUP>    •
  95. example <COLGROUP ALIGN>    <COLGROUP ALIGN="align"> column data </COLGROUP>    •
  96. html <COLGROUP HALIGN>    The HALIGN attribute specifies the horizontal alignment of text in the cells for the column group. The values: LEFT, RIGHT and CENTER (the default.)    •
  97. example <COLGROUP HALIGN>    <COLGROUP HALIGN="halign"> column data </COLGROUP>    •
  98. html <COLGROUP VALIGN>    The VALIGN attribute sets the vertical alignment for the column. The values are TOP, MIDDLE (the default,) and BOTTOM.    •
  99. example <COLGROUP VALIGN>    <COLGROUP VALIGN="valign"> column data </COLGROUP>    •
  100. html <COLGROUP WIDTH>    The WIDTH attribute specifies the width of each column in the column group.    •
  101. example <COLGROUP WIDTH>    <COLGROUP WIDTH="width"> column data </COLGROUP>    •
  102. html <COLGROUP SPAN>    The SPAN attribute sets the number of consecutive columns for the group.    •
  103. example <COLGROUP SPAN>    <COLGROUP SPAN="number"> column data </COLGROUP>    •
  104. html <CREDIT>    <Credit> The credit tag defines text that credits a figure or quote. It is valid only within FIG or BQ tags. Example: <CREDIT> text </CREDIT>    •
  105. html <DEL>    <Deleted Text> The deleted text tag marks text that has been deleted, for example in a group authoring situation or a legal document. Example: <DEL> list entries </DEL>    •
  106. html <DFN>    <Definition> The definition tag defines text that defines a term -- many browsers will display it in italics, though others will ignore it.    •
  107. example <DFN>    It can be nested with other idiomatic or typographic tags but some browsers will respect only the innermost tag. <DFN> text </DFN>    •
  108. html <DIR>    <Directory List> The directory list tag introduces a directory list, which is made up of List Item (LI) tags and does not include bullets or numbers before them. See: <DIR> 2, 3 & 4    •
  109. html <DIR> 2    The items should be short so that they can be arranged into columns. For a bulleted list use UL.    •
  110. html <DIR> 3    For a numbered list use OL. For a list without bullets or numbers that is not arranged into columns use MENU.    •
  111. html <DIR> 4    In HTML 3.0, the same effect can be achieved with <UL PLAIN WRAP=HORIZ>. The DIR tag will probably be obsolete some day, so use UL.    •
  112. example <DIR>    <DIR> list entries </DIR> & <DIR COMPACT> list entries </DIR>    •
  113. html <DIR COMPACT>    The COMPACT attribute instructs the browser to reduce the space occupied by the list.    •
  114. example <DIR COMPACT>    <DIR COMPACT> list entries </DIR>    •
  115. html <DIV>    <Division> The division tag is used to divide a document up into different sections, such as chapters, sections, abstract, and appendix.    •
  116. example <DIV>    <DIV ALIGN=align> & <DIV CLASS=class> & <DIV CLASS=class NOWRAP> & <DIV =clear> & <DIV =lang>    •
  117. html <DIV ALIGN>    The ALIGN attribute can be one of LEFT, RIGHT, or CENTER. Example: <DIV ALIGN=align>    •
  118. html <DIV CLASS>    The CLASS attribute that specifies what section this is. Example: <DIV CLASS=class>    •
  119. html <DIV NOWRAP>    NOWRAP attribute stops the browser from wrapping except where <BR>'s are included in the document. Example: <DIV CLASS=class NOWRAP>    •
  120. html <DIV =lang>    Indicates the ISO standard language. Enter the standard abbreviation to indicate the language of the element. ( LANG=iso )       •
  121. html <DL>    The definition list tag introduces a definition list or glossary, which is made up of term (DT) and definition (DD) items. The </DT> and </DD> tags are optional. See: <DL> 2    •
  122. html <DL> 2    Typically the definitions are indented under each term, with no blank lines around them. A list heading (LH) may be included before the first definition term.    •
  123. example <DL>    <DL> list entries </DL> & <DL COMPACT> list entries </DL> & <DT> term & <DD> definition    •
  124. html <DL COMPACT>    If COMPACT was specified (and the terms are short) the terms and definitions are on the same line. Do not use multiple DD elements for the same DT -- instead use BR within the DD.    •
  125. example <DL COMPACT>    <DL COMPACT> list entries </DL>    •
  126. html <DT>    <Definition Term> See: <DL>    •
  127. html <DD>    <Definition Definition> Do not use multiple DD elements for the same DT -- instead use BR within the DD. See: <DL>    •
  128. html <EM>    <Emphasized> The emphasized tag defines text that should be emphasized -- most browsers will display it in italics. See: <EM> 2    •
  129. html <EM> 2    It can be nested with other idiomatic or typographic tags but some browsers will respect only the innermost tag.    •
  130. example <EM>    <EM> text </EM>    •
  131. html <EMBED>    The embed element is used to embed a plugin into a document. The OBJECT tag can also be used to embed objects. See also: <EMBED attributes>    •
  132. html <EMBED attributes>    SCR, HEIGHT, WIDTH, UNITS, NAME, OPTIONAL PARAMETER & PALETTE    •
  133. example <EMBED>    <EMBED attributes> alternate HTML </EMBED>    •
  134. html <EMBED SCR>    ( SRC="URL" ) "URL" identifies the location of the object to be embedded.    •
  135. html <EMBED HEIGHT>    ( HEIGHT=number ) This specifies the height of the object, according to the UNITS attribute.    •
  136. html <EMBED WIDTH>    ( WIDTH=number ) This specifies the width of the object, according to the UNITS attribute.    •
  137. html <EMBED UNITS>    ( UNITS=units ) Here units is one of pixels, meaning the width and height are measured in pixels, or en, meaning the width and height are measured in en spaces.    •
  138. html <EMBED NAME>    ( NAME=text ) This indicates the name used by other objects or elements to refer to this object.    •
  139. html <EMBED OPTIONAL PARAMETER>    ("OPTIONAL PARAMETER"=value) This specifies any parameters that are specific to the object. Put the name of the parameter in place of "OPTIONAL PARAMETER".    •
  140. html <EMBED PALETTE>    ( PALETTE=#rgb|#rgb ) Sets the foreground or background color. The first colour is the foreground.    •
  141. html <FIG>    <Figure> The figure element is an improvement over the inline image used in HTML 2.0 for a variety of reasons. See: <FIG> 2, 3, & 4    •
  142. html <FIG> 2    The text used to describe the figure for non-graphical browsers can contain markup tags & a separate credit and caption will be displayed by both graphical and non-graphical browsers    •
  143. html <FIG> 3    It also makes imagemaps much easier to code & independent of the server. (See the OBJECT and MAP tags for an alternate to this tag)    •
  144. html <FIG> 4    At the moment it isn't clear whether the built-in image maps of FIG or the client-side image maps of IMG with a USEMAP attribute will emerge as the long term alternative to server side image maps.    •
  145. example <FIG>    <FIG attributes> figure-content </FIG>    •
  146. html <FIG attributes>    The attributes for the <FIG> tag: SRC, ALIGN, HEIGHT, WIDTH, UNITS, NOFLOW & IMAGEMAP    •
  147. html <FIG SRC>    ( SRC="URL" ) "URL" identifies the image source, typically a GIF or JPEG file.    •
  148. html <FIG ALIGN>    (ALIGN="alignment") "alignment" should be one of TOP, MIDDLE, or BOTTOM. This causes the top, middle, or bottom of the image to be aligned with the text on the line containing the IMG tag. See: <FIG ALIGN> 2    •
  149. html <FIG ALIGN> 2    For Netscape: "alignment" should be one of LEFT, RIGHT, TOP, TEXTTOP, MIDDLE, ABSMIDDLE, BASELINE, BOTTOM, or ABSBOTTOM.    •
  150. html <FIG HEIGHT>    ( HEIGHT=number ) This specifies the height of the image, according to the UNITS attribute.    •
  151. html <FIG WIDTH>    ( WIDTH=number ) This specifies the width of the image, according to the UNITS attribute.    •
  152. html <FIG UNITS>    (UNITS=units ) Here units is one of pixels, meaning the width and height are measured in pixels, or en, meaning the width and height are measured in en spaces. See:<FIG> 2    •
  153. html <FIG UNITS> 2    These units are not used for the shape co-ordinates of any anchor tags in the figure.    •
  154. html <FIG NOFLOW>    Stops text from flowing around the figure.    •
  155. html <FIG IMAGEMAP>    ( IMAGEMAP="URL" ) Points to a script that handles clicks and drags.    •
  156. html <SHAPE attribute>    One of: Defualt, Circle ( x, y, r ), Rect ( x, y, w, h ) & Polygon ( x1, y1, x2, y2, ... )    •
  157. html <FN>    <Footnote> The footnote tag defines a footnote, ideally displayed in a pop-up window. The text that refers to this footnote does so with a standard anchor tag using anchor-name.    •
  158. example <FN>    <FN ID=anchor-name> text </FN>    •
  159. html <FONT>    The font tag defines text with a smaller or larger font than usual. The normal font size corresponds to 3; smaller values of number will produce a smaller font, and larger values of number will produce a larger font. See: <FONT> 2    •
  160. html <FONT> 2    If number has a sign (for example +1), the font will be changed relative to the BASEFONT.    •
  161. example <FONT>    <FONT SIZE=number> & <FONT COLOR="#RRGGBB"> & <FONT COLOR="colorname"> & <FONT FACE="facename1, facename2...">    •
  162. html <FONT COLOR>    The COLOR attribute allows you to change the colour of the text.    •
  163. example <FONT COLOR>    <FONT COLOR="#RRGGBB"> & <FONT COLOR="colorname">    •
  164. html <FONT FACE>    The FACE attribute specifies the face to be used, such as Arial or Courier. If multiple names are specified, the first one listed that is installed on the client machine is used.    •
  165. example <FONT FACE>    <FONT FACE="facename1, facename2...">    •
  166. html <FORM>    The form tag introduces a form, which is made up of INPUT elements, described in the sections that follow. See: <FORM> 2    •
  167. html <FORM> 2    A form may be inside structural HTML tags & may also contain structural tags. Using tables and other elements a form can take on various shapes and looks.    •
  168. example <FORM>    <FORM ACTION=action base> form tags </FORM> & <FORM METHOD=method> form tags </FORM> & <FORM ENCTYPE=media type> form tags </FORM>    •
  169. html <FORM ACTION>    The ACTION attribute defaults to the document's base address.    •
  170. example <FORM ACTION>    <FORM ACTION=action base> form tags </FORM> & <FORM ACTION=action base TARGET="target window name"> form tags </FORM>    •
  171. html <FORM METHOD>    The METHOD attribute can be GET or POST. GET specifies a query form, used to get data from a server. See: <FORM METHOD> 2    •
  172. html <FORM METHOD> 2    POST specifies a form that gives information to the server and perhaps causes a database to be updated or a message to be sent.    •
  173. example <FORM METHOD>    <FORM METHOD=method> form tags </FORM>    •
  174. html <FORM ENCTYPE>    See: example <FORM ENCTYPE>    •
  175. example <FORM ENCTYPE>    <FORM ENCTYPE=media type> form tags </FORM>    •
  176. html <FORM SCRIPT>    The SCRIPT attribute points to a script to be run. The browser must be able to run the type of script that is specified.    •
  177. example <FORM SCRIPT>    <FORM SCRIPT=URL> form tags </FORM>    •
  178. html <FRAME>    The frame tag appears inside the FRAMESET tag and specifies one frame in the frameset.    •
  179. example <FRAME>    <FRAME attributes>    •
  180. html <FRAME attributes>    One or all of these: SRC, NAME, MARGINWIDTH, MARGINHEIGHT, SCROLLING, NORESIZE, FRAMEBORDER, FRAMESPACING & ALIGN    •
  181. html <FRAME SRC>    (SRC="URL") The URL of the source document to be displayed in this frame. If the frame does not specify a source it will be displayed as blank space.    •
  182. html <FRAME NAME>    (NAME="window name") Here "window name" is the name associated with this frame. It can be used by the TARGET attribute in the A, BASE, AREA, and FORM tags to target this frame.    •
  183. html <FRAME MARGINWIDTH>    ( MARGINWIDTH=number ) Here number is the left and right margin thickness in pixels.    •
  184. html <FRAME MARGINHEIGHT>    ( MARGINHEIGHT=number ) Here number is the top and bottom margin thickness in pixels.    •
  185. html <FRAME SCROLLING>    (SCROLLING=type) Here type is one of yes, no or auto. It specifies if the frame is to have a scroll bar: auto (the default) means the browser will decide.    •
  186. html <FRAME NORESIZE>    Stops the user from resizing the frame..    •
  187. html <FRAME FRAMEBORDER>    (FRAMEBORDER=yes/no) Specifies if the border should be displayed.    •
  188. html <FRAME FRAMESPACING>    (FRAMESPACING=number) Here number is the spacing between frames in pixels.    •
  189. html <FRAME ALIGN>    (ALIGN = "alignment") One of: LEFT, RIGHT, TOP, TEXTTOP, MIDDLE, ABSMIDDLE, BASELINE, BOTTOM, or ABSBOTTOM.    •
  190. html <FRAMESET>    The FRAMESET tag replaces the BODY tag in a document and is used to split the documents window into a set of smaller frames. See: html <FRAMESET> 2    •
  191. html <FRAMESET> 2    FRAMESET tags can be nested to create more complicated frame layouts. NOFRAME tags can also be placed in a frameset.    •
  192. example <FRAMESET>    <FRAMESET attributes> frame tags </FRAMESET>    •
  193. html <FRAMESET attributes>    The attributes for the tag <FRAMESET> are: ROWS & COLS    •
  194. html <FRAMESET ROWS>    (ROWS="row heights") Here "row heights" specifies a list of values for the rows, each one can be specified as a percentage, a pixel value or as "*". See: html <FRAMESET ROWS> 2    •
  195. html <FRAMESET ROWS> 2    The frameset will be split vertically into frames based on these values. Rows with "*"'s in them will have any remaining space split between them.    •
  196. html <FRAMESET COLS>    (COLS="column widths") Here "column widths" specifies a list of values for the columns. The width of each column can be specified as a percentage, a pixel value or as "*". See: html <FRAMESET COLS> 2    •
  197. html <FRAMESET COLS> 2    The frameset will be split into frames based on these values. Columns with a width of "*" will split the space that is not assigned to other columns.    •
  198. html <H1>    The heading 1 tag defines a level 1 heading. It is typically shown in a very large bold font with several blank lines around it, and is used by automatic indexers to describe a page.    •
  199. example <H1>    <H1> text </H1> & <H1 ALIGN=alignment > text </H1> & <H1 SRC="URL" > text </H1> & <H1 DINGBAT="entity-name" > text </H1>    •
  200. html <H1 attributes>    The attributes for the HTML tag <H1> are: ALIGN, SRC, DINGBAT, NOWRAP & CLEAR    •
  201. html <H1 ALIGN>    The alignment attribute can be LEFT, RIGHT, or CENTER -- it defines the placement of the header on the screen. <H1 ALIGN=alignment > text </H1>    •
  202. html <H1 SRC>    The SRC attribute identifies a graphic image to be embedded before the header text. <H1 SRC="URL" > text </H1>    •
  203. html <H1 DINGBAT>    The DINGBAT attribute identifies an iconic entity to be embedded. <H1 DINGBAT="entity-name" > text </H1>    •
  204. html <H1 NOWRAP>    The NOWRAP attribute prevents the browser from breaking long header lines; use a <BR> to break those lines yourself. <H1 NOWRAP> text </H1>    •
  205. html <H1 CLEAR>    The clear attribute is used to position a header after a graphic: it can be LEFT, RIGHT, or ALL & specifies which margin should be clear. <H1 CLEAR=clear > text </H1>    •
  206. html <H2>    The heading 2 tag defines a level 2 heading. It is typically shown in a large bold font with several blank lines around it. See: <H1 attributes>    •
  207. example <H2>    <H2> text </H2>    •
  208. html <H3>    The heading 3 tag defines a level 3 heading. It is typically shown in a large italic font, slightly indented, with blank lines around it. See: <H1 attributes>    •
  209. example <H3>    <H3> text </H3>    •
  210. html <H4>    The heading 4 tag defines a level 4 heading. It is typically shown in a bold font, indented more than an level 3 heading, with blank lines around it. See: <H1 attributes>    •
  211. example <H4>    <H4> text </H4>    •
  212. html <H5>    The heading 5 tag defines a level 5 heading. It is typically shown in an italic font, indented the same as a level 4 heading, with a blank line above it. See: <H1 attributes>    •
  213. example <H5>    <H5> text </H5>    •
  214. html <H6>    The heading 6 tag defines a level 6 heading. It is typically shown in a normal font, indented more than a level 5 heading, with a blank line above it. See: <H1 attributes>    •
  215. example <H6>    <H6> text </H6>    •
  216. html <HEAD>    The head tag introduces text that describes an HTML document. Most documents have only a TITLE tag in the head section.    •
  217. example <HEAD>    <HEAD> head-section </HEAD>    •
  218. html <HR>    <Horizontal Rule> The horizontal rule tag causes a horizontal line to be drawn across the screen. There is no </HR> tag.    •
  219. html <HTML>    The HTML tag defines an HTML document. The <HTML> tag should be the first in the entire document, and the </HTML> tag should be the last.    •
  220. example <HTML>    <HTML> entire-document </HTML>    •
  221. html <I>    <Italic> The italic tag defines text that should be shown in italics. It can be nested with other idiomatic or typographic tags but some browsers will respect only the innermost tag    •
  222. example <I>    <I> text </I>     •
  223. html <IFRAME>    <Frame - Floating> The IFRAME tag defines a floating frame, and the end tag is required.    •
  224. example <iframe>    <IFRAME attributes> frame data <IFRAME>    •
  225. html <IFRAME attributes>    ALIGN, FRAMEBORDER, HEIGHT, MARGINHEIGHT, MARGINWIDTH, NAME, SCROLLING, SRC and WIDTH     •
  226. html <IFRAME ALIGN>    (ALIGN=left|center|top|bottom) This sets the alignment of the frame or of the surrounding text. The default is LEFT    •
  227. html <IFRAME FRAMEBORDER>    (FRAMEBORDER=1|0) Renders a 3-D edge border around the frame. 1 (default) inserts a border. 0 displays no border    •
  228. html <IFRAME HEIGHT>    (HEIGHT=height) Controls the height (in pixels) of the floating frame    •
  229. html <IFRAME MARGINHEIGHT>    (MARGINHEIGHT=height) Controls the margin height for the frame, in pixels    •
  230. html <IFRAME MARGINWIDTH>    (MARGINWIDTH=width) Controls the margin width for the frame, in pixels    •
  231. html <IFRAME NAME>    (NAME=name) Provides a target name for the frame    •
  232. html <IFRAME SCROLLING>    (SCROLLING=yes|no) Creates a scrolling frame    •
  233. html <IFRAME SRC>    (SRC=address) Displays the source file for the frame    •
  234. html <IFRAME WIDTH>    (WIDTH=width) Controls the width of the floating frame, in pixels    •
  235. html <IMG>    <Inline Image> The inline image tag displays an image referred to by a URL. It must contain at least an SRC attribute    •
  236. html <IMG attributes>    ALIGN, ALT, BORDER, CONTROLS, DYNSRC, HEIGHT, HSPACE, ISMAP, LOOP, LOWSRC,  START, SRC, UNITS, USEMAP, WIDTH, and VSPACE    •
  237. html <IMG ALIGN>    (ALIGN="alignment") Here "alignment" should be one of TOP, MIDDLE, or BOTTOM. This causes the top, middle, or bottom of the image to be aligned with the text on the line containing the IMG tag."alignment" should be one of LEFT, RIGHT, TOP, TEXTTOP, MIDDLE, ABSMIDDLE, BASELINE, BOTTOM, or ABSBOTTOM.      •
  238. html <IMG ALT>    (ALT="text") Here "text" is the text to be displayed by a browser that does not display images, such as Lynx, or to be used when image display is suppressed.     •
  239. html <IMG BORDER>    (BORDER=number) Here number is the border thickness in pixels. (Do not use BORDER=0 for images that are links.)     •
  240. html <IMG CONTROLS>    If present, and an AVI resource is being played, displays controls under the resource.     •
  241. html <IMG DYNSRC>    (DYNSRC="url") Specifies an AVI resource to be played, or a VRML world. Always include a still image as well with the SRC attribute, for use by browsers that do not display inline video or VRML.    •
  242. html <IMG HEIGHT>    (HEIGHT=number) This specifies the height of the image, according to the UNITS attribute.     •
  243. html <IMG HSPACE>    (HSPACE=number) Here number is the space, in pixels, to leave to the left and right of the image.      •
  244. html <IMG ISMAP>    (ISMAP="url") This attribute indicates that this image is a server side image map.     •
  245. html <IMG LOOP>    (LOOP=number) The optional LOOP attribute will cause the resource to be played number times. LOOP="INFINITE" will cause the resource to be played continuously as long as the page is open.     •
  246. html <IMG LOWSRC>    (LOWSRC="url") Specifies an image to be displayed while the SRC image is being loaded. This alternate image should take much less time to download then the SRC image: it should be lower resolution, black and white, etc.     •
  247. html <IMG START>    (START="start option") The START attribute specifies when the browser should start to play the resource specified with the DYNSRC attribute. START=FILEOPEN instructs the browser to play the resource only when the file is opened. START=MOUSEOVER instructs the browser to play the resource each time the user moves the mouse cursor over it. START=FILEOPEN,MOUSEOVER does both.     •
  248. html <IMG SRC>    (SRC="URL") Here "URL" identifies the image source, typically a GIF or JPEG file.     •
  249. html <IMG UNITS>    (UNITS=units) Here units is one of pixels, meaning the width and height are measured in pixels, or en, meaning the width and height are measured in en spaces.    •
  250. html <IMG USEMAP>    (USEMAP="url") This attribute overrides the ISMAP attribute, if present, and if the browser supports client-side image maps. It uses the MAP element found at url to translate clicks.     •
  251. html <IMG WIDTH>    (WIDTH=number) This specifies the width of the image, according to the UNITS attribute.     •
  252. html <IMG VSPACE>    (VSPACE=number) Here number is the space, in pixels, to leave above and below the image.     •
  253. html <INPUT>    To be filled in at a later date <Form Input>    •
  254. html <INS>    (Inserted Text) The inserted text tag marks text that has been inserted, for example in a group authoring situation or a legal document.    •
  255. example <INS>    <INS> text </INS>    •
  256. html <ISINDEX>    (Is Index) The isindex tag, which is only valid in a HEAD section, declares that the current HTML document is a searchable index. The user will be prompted for keywords to search for. A new URL will be formed by taking the base address of the current document and adding a '?' character to it, followed by the keywords separated by '+' characters. The URL attribute overrides the base address. The prompt attribute changes the prompt from the default one supplied by the browser.    •
  257. example <ISINDEX>    <ISINDEX HREF=URL> & <ISINDEX PROMPT=prompt>     •
  258. html <KBD>    <Keyboard> The keyboard tag defines text that should be shown in a fixed width font. It can be nested with other idiomatic or typographic tags but some browsers will respect only the innermost tag. Many browsers use the same font for the KBD, SAMP, TT and CODE tags. For many lines of fixed width text, with the line breaks and other whitespace specified by the page author, use the PRE tag.    •
  259. example <KBD>    <KBD> text </KBD>    •
  260. html <LANG>    <Language> The language tag is used to alter the language used for a block of text.    •
  261. example <lang>    <LANG> text </LANG>    •
  262. html <LH>    <List Heading> The list heading tag defines the heading for an ordered, unordered, or definition list. Other tags may be embedded in a list heading. It must come before any List Item (LI) or Definition Term (DT) tags in the list.    •
  263. example <lh>    <LH> text </LH>    •
  264. html <LI>    <List Item> The list item tag defines one entry in an ordered, unordered, menu, or directory list. Other tags may be embedded in a list item.    •
  265. html <LI attributes    SRC, DINGBAT, SKIP, TYPE, and VALUE    •
  266. html <LI SRC>    The SRC attribute uses the image specified by the URL as the bullet for this item. <LI SRC=URL> text </LI>    •
  267. html <LI DINGBAT>    The DINGBAT attribute identifies an iconic entity for the bullet. <LI DINGBAT="entity-name"> text </LI>    •
  268. html <LI SKIP>    The SKIP attribute is used with ordered lists to skip forward in the count. <LI SKIP=number> text </LI>    •
  269. html <LI TYPE>    The TYPE attribute changes the bullet or numbering style for this item. type has the same values as it would in the OL or UL tag. <LI TYPE=type> text </LI>    •
  270. html <LI VALUE>    The VALUE attribute resets the sequence number to number. <LI VALUE=number> text </LI>    •
  271. html <LINK>    The link tag appears within the HEAD section of a document. It has all the same attributes as the anchor tag. The main 3 attributes used are REL, REV and HREF.    •
  272. html <LINK attributes>    REL, REV, TITLE and HREF    •
  273. html <LINK REV>    The REV attribute specifies a reverse relationship <LINK REV=relationship HREF="URL"> & <LINK REV=relationship HREF="URL" TITLE="title">    •
  274. html <LINK TITLE>    The TITLE attribute specifies an advisory title string. <LINK REV=relationship HREF="URL" TITLE="title">    •
  275. html <LINK HREF>    the HREF attribute specifies the URL of the link.    •
  276. html <LINK REL>    REL attribute specifies the relationship between this document and the link. - See also: html <LINK REV=relationship> - <LINK REL=relationship HREF="URL">    •
  277. html <LINK REV=relationship>    Toolbar relationships: REL=Home, REL=ToC, REL=Index, REL=Glossary, REL=Copyright, REL=Up, REL=Next, REL=Previous, REL=Help and REL=Bookmark (Other relationships: REL=Banner & REL=StyleSheet)     •
  278. html <LINK REL=Home>    Link points to home or top page in hierarchy.    •
  279. html <LINK REV=ToC>    Link points to a table of contents.    •
  280. html <LINK REV=Index>    Link points to an index for the current page.    •
  281. html <LINK REV=Glossary>    Link points to a glossary.    •
  282. html <LINK REV=Copyright>    Link points to a page with copyright information for the current page.    •
  283. html <LINK REV=Up>    Link points to the pages parent in the hierarchy.    •
  284. html <LINK REV=Next>    Link points to the next page in a series of pages.    •
  285. html <LINK REV=Previous>    Link points to the previous page in a series of pages.    •
  286. html <LINK REV=Help>    Link points to information that may further explain the page to the user.    •
  287. html <LINK REV=Bookmark>    Link points to a particular location within a long document. The TITLE attribute is used to label the bookmark.    •
  288. html <LINK REV=Banner>    This use achieves the effect that the BANNER tag will eventually provide.    •
  289. html <LINK REV=StyleSheet>    Link points to a style sheet that will be used to render the current document.    •
  290. html <LISTING>    <Listing> The listing tag introduces a program listing. Because of the way this tag handles embedded tags, it should no longer be used. PRE is a better choice.    •
  291. example <LISTING>    <LISTING> text </LISTING>    •
  292. html <MAP>    <Map> The map tag defines a client side image map It gives a name to a collection of AREA tags that are superimposed over an inline image to connect user clicks with URLs.    •
  293. example <MAP>    <MAP NAME="name"> area tags </MAP>    •
  294. html <MARQUEE>    <Marquee> The marquee tag defines a moving piece of text, like a movie marquee.    •
  295. example <MARQUEE>    <MARQUEE> text </MARQUEE> and See: html <MARQUEE attributes>     •
  296. html <MARQUEE attributes>    ALIGN, BEHAVIOR, BGCOLOR, DIRECTION, HEIGHT, HSPACE, LOOP, SCROLLAMOUNT, SCROLLDELAY, WIDTH, VSPACE, and WIDTH    •
  297. html <MARQUEE ALIGN>    The ALIGN attribute works like the ALIGN attribute in the IMG tag, setting the location of the surrounding text. "align" can be TOP, BOTTOM, or MIDDLE.    •
  298. example <MARQUEE ALIGN>    <MARQUEE ALIGN="align"> text </MARQUEE>     •
  299. html <MARQUEE BEHAVIOR>    The BEHAVIOR attribute defines the way the text moves. SCROLL means that the text slides into the marquee box and out again, then repeats. SLIDE means that the text slides into the marquee box, stops when it is all in, then repeats. ALTERNATE means that the text bounces back and forth within the marquee box.    •
  300. example <MARQUEE BEHAVIOR>    <MARQUEE BEHAVIOR="behavior"> text </MARQUEE>    •
  301. html <MARQUEE BGCOLOR>    The BGCOLOR attribute specifies the colour to be used for the background. rrggbb is a six digit hexadecimal number with the first two digits specifying the red value, the middle two the green value, and the last two the blue value. Colour names can be used for the BGCOLOR attribute. Valid colours are: Aqua, Black, Blue, Fuchsia, Gray, Green, Lime, Maroon, Navy, Olive, Purple, Red, Silver, Teal,Yellow, and White.    •
  302. example <MARQUEE BGCOLOR>    <MARQUEE BGCOLOR="#rrggbb"> text </MARQUEE> & <MARQUEE BGCOLOR="colorname"> text </MARQUEE>    •
  303. html <MARQUEE DIRECTION>    The DIRECTION attribute is LEFT or RIGHT and specifies the direction in which the text should move.    •
  304. example <MARQUEE DIRECTION>    <MARQUEE DIRECTION="direction"> text </MARQUEE>    •
  305. html <MARQUEE HEIGHT>    The HEIGHT and WIDTH attributes size the marquee box. If n is an absolute number, it is taken to mean pixels; if n is followed by a % sign it is taken to mean a percentage of the width or height (as appropriate) of the screen.    •
  306. example <MARQUEE HEIGHT>    <MARQUEE HEIGHT=n> text </MARQUEE> & <MARQUEE HEIGHT=n%> text </MARQUEE>    •
  307. html <MARQUEE HSPACE>    The HSPACE and VSPACE attributes specify a margin to the left and right, or above and below, the marquee box, in pixels.     •
  308. example <MARQUEE HSPACE>    <MARQUEE HSPACE=n> text </MARQUEE>    •
  309. html <MARQUEE LOOP>    The LOOP attribute will cause the marquee to scroll n times. LOOP="INFINITE" will cause the marquee to scroll as long as the page is open.    •
  310. example <MARQUEE LOOP>    <MARQUEE LOOP=n> text </MARQUEE>    •
  311. html <MARQUEE SCROLLAMOUNT>    The SCROLLAMOUNT attribute specifies, the amount, in pixels, to move the scrolling text by each time it is drawn.    •
  312. example <MARQUEE SCROLLAMOUNT>    <MARQUEE SCROLLAMOUNT=n> text </MARQUEE>    •
  313. html <MARQUEE SCROLLDELAY>    The SCROLLDELAY attribute specifies the delay, in milliseconds, between drawings.    •
  314. example <MARQUEE SCROLLDELAY>    <MARQUEE SCROLLDELAY=n> text </MARQUEE>    •
  315. html <MARQUEE VSPACE>    The HSPACE and VSPACE attributes specify a margin to the left and right, or above and below, the marquee box, in pixels.    •
  316. example <MARQUEE VSPACE>    <MARQUEE VSPACE=n> text </MARQUEE>    •
  317. html <MARQUEE WIDTH>    The HEIGHT and WIDTH attributes size the marquee box. If n is an absolute number, it is taken to mean pixels; if n is followed by a % sign it is taken to mean a percentage of the width or height (as appropriate) of the screen.    •
  318. example <MARQUEE WIDTH>    <MARQUEE WIDTH=n%> text </MARQUEE>    •
  319. html <MATH>    The math tag introduces a description of an equation or formula. math-content is not yet fully defined.    •
  320. example <MATH>    <MATH> math-content </MATH>    •
  321. html <MENU>    <Menu List> The menu list tag introduces a menu list, which is made up of List Item (LI) tags and does not include bullets or numbers before them. For a bulleted list use UL. For a numbered list use OL. For a list without bullets or numbers made up of short items that can be arranged into columns use DIR. The COMPACT attribute instructs the browser to reduce the space occupied by the list.    •
  322. example <MENU>    <MENU> list entries </MENU> & <MENU COMPACT> list entries </MENU> **In HTML 3.0, the same effect can be achieved with <UL PLAIN>. The MENU tag will probably be obsolete some day, so use UL.    •
  323. html <META>    <META [...]> The meta tag, which is only valid in a HEAD section, declares HTTP meta name/value pairs that are associated with the HTML document. These are used to extend the HTTP header information returned by the HTTP server. The support of the meta information is HTTP server specific. If a name attribute is not specified the HTTP-EQUIV attribute is used as the name. This tag can also be used to trigger client side behaviour.    •
  324. html <MULTICOL>    <Multi Column Text> This tag is a container, used to split the display into columns without using frames or tables. The attributes of this tag are: COLS, GUTTER, and WIDTH    •
  325. html <MULTICOL COLS>    (COLS="number") The COLS attribute is mandatory and controls how many columns the display will be split into.    •
  326. html <MULTICOL GUTTER>    (GUTTER="pixels") The GUTTER attribute controls the pixels of space between columns. It defaults to a value of 10.    •
  327. html <MULTICOL WIDTH>    (WIDTH="number") The WIDTH attribute controls the width of an individual column.     •
  328. html <NOBR>    <No Break> The no break tag defines a block of text which will have no line breaks except those explicitly requested with BR or suggested with WOBR.    •
  329. example <NOBR>    <NOBR> text </NOBR>    •
  330. html <NOFRAMES>    <No Frames> The NOFRAMES tag specifies HTML that can be used by browsers that do not support frames. Everything between the start and end tag is ignored by browsers that understand frames.    •
  331. example <NOFRAMES>    <NOFRAMES> alternate HTML </NOFRAMES>    •
  332. html <NOTE>    <Note> The note tag defines text that forms a note. Many browsers display it in an indented block surrounded by blank lines with a graphic. The CLASS attribute specifies the type of note, such as a warning, caution, or note. The graphic used will be based on the CLASS. The SRC attribute can be used to override the graphic that would be used by default.    •
  333. example <NOTE>    <NOTE> text </NOTE>  <NOTE CLASS=class> text </NOTE>  <NOTE SRC=URL> text </NOTE>    •
  334. html <OL>    <Ordered List> The ordered list tag introduces an ordered (numbered) list, which is made up of List Item (LI) tags.    •
  335. example <OL>    <OL> list entries </OL> and See also: html <OL attributes>    •
  336. html <OL attributes>    COMPACT, SEQNUM, CONTINUE, START, and TYPE    •
  337. html <OL COMPACT>    The COMPACT attribute instructs the browser to reduce the space occupied by the list.    •
  338. example <OL COMPACT>    <OL COMPACT> list entries </OL>    •
  339. html <OL SEQNUM>    The SEQNUM attribute allows the first list item to be number instead of the default 1.    •
  340. example <OL SEQNUM>    <OL SEQNUM=number> list entries </OL>    •
  341. html <OL CONTINUE>    The CONTINUE attribute continues the numbering from the previous ordered list.    •
  342. example <OL CONTINUE>    <OL CONTINUE> list entries </OL>    •
  343. html <OL START>    The START attribute allows the first list item to be number instead of the default 1.    •
  344. example <OL START>    <OL START=number> list entries </OL>    •
  345. html <OL TYPE>    The TYPE attribute governs the way items are numbered.    •
  346. example <OL TYPE>    <OL TYPE=type> list entries </OL>    •
  347. html <OVERLAY>    <Overlay> Valid only within a figure (FIG), the overlay element speeds up image rendering by drawing small changes over a base figure.    •
  348. html <OVERLAY attributes>    The attributes are: SRC, X, Y, HEIGHT, WIDTH, UNITS, and IMAGEMAP    •
  349. html <OVERLAY SRC>    (SRC="URL") Here "URL" identifies the image source, typically a GIF or JPEG file.    •
  350. html <OVERLAY X>    (X=number) This specifies the offset to the right within the base image from the top left corner, according to the UNITS attribute.    •
  351. html <OVERLAY Y>    (Y=number) This specifies the offset to the bottom within the base image from the top left corner, according to the UNITS attribute.    •
  352. html <OVERLAY HEIGHT>    (HEIGHT=number) This specifies the height of the image, according to the UNITS attribute.    •
  353. html <OVERLAY WIDTH>    (WIDTH=number) This specifies the width of the image, according to the UNITS attribute.    •
  354. html <OVERLAY UNITS>    (UNITS=units) Here units is one of pixels, meaning the width and height are measured in pixels, or en, meaning the width and height are measured in en spaces.     •
  355. html <OVERLAY IMAGEMAP>    (IMAGEMAP="URL") Points to a script that handles clicks and drags.    •
  356. html <P>    <Paragraph> The paragraph tag starts a new paragraph, equivalent to two BR tags. The </P> tag is optional if the tag is only to insert space between two paragraphs, but vital when attributes (for example, ALIGN="center") are to apply to the whole paragraph. The ALIGN attribute can be one of LEFT, RIGHT, or CENTER. The NOWRAP attribute will make it so lines are only broken at the <BR> tag.    •
  357. example <P>    <P> text  <P> text </P>  <P ALIGN=alignment> text  <P NOWRAP> text    •
  358. html <PARAM>    <Parameters> This tag, valid only within an APPLET element, passes parameters to the applet, which gets them with the getParameter() method.    •
  359. example <PARAM>    <PARAM NAME="name" VALUE="value">    •
  360. html <PERSON>    <Person> The person tag is used around names of people mentioned in a document. It is typically displayed just like normal text, but is used by automatic indexers    •
  361. example <PERSON>    <PERSON> text </PERSON>    •
  362. html <PLAINTEXT>    <Plain Text> The plain text tag defines text that should be shown in a fixed width font with the line breaks and other whitespace specified by the page author. There is no need to use <BR> tags to indicate line breaks -- line breaks in the source will be displayed by the browser. In addition multiple spaces will be displayed as multiple spaces. HTML tags are not rendered..    •
  363. example <PLAINTEXT>    <PLAINTEXT> text </PLAINTEXT>     •
  364. html <PRE>    The preformatted text tag defines text that should be shown in a fixed width font with the line breaks and other whitespace specified by the page author. There is no need to use <BR> tags to indicate line breaks -- line breaks in the source will be displayed by the browser. In addition multiple spaces will be displayed as multiple spaces. Typically used for several lines of program code or for poetry. The width attribute specifies the maximum number of characters per line.     •
  365. example <PRE>    <PRE> text </PRE>  <PRE WIDTH=width> text </PRE>    •
  366. html <Q>    <Quote> The quote tag defines text that should be displayed as a short quote. For English language documents this means the text will be surrounded with double quote (") symbols. Quotes nested within quotes will typically be displayed surround by single quote (') symbols.    •
  367. example <Q>    <Q> text </Q>    •
  368. html <RANGE>    The range tag, which is valid only in the HEAD section, defines a range within the document. The FROM and UNTIL attributes refer to ID's of tags within the document. The SPOT tag can be used to specify a location in the document where there is no other tag.    •
  369. example <RANGE>    <RANGE FROM="from id" UNTIL="until id">    •
  370. html <SAMP>    The sample tag defines text that should be shown as literal characters in a fixed width font. It can be nested with other idiomatic or typographic tags but some browsers will respect only the innermost tag. Many browsers use the same font for the KBD, SAMP, TT and CODE tags. For many lines of fixed width text, with the line breaks and other whitespace specified by the page author, use the PRE tag.    •
  371. example <SAMP>    <SAMP> text </SAMP>    •
  372. html <SCRIPT>    The script tag identifies script code. This can be code to be executed at this point of the document or may contain functions for use later in the document. The statements are usually but not required to be enclosed in the comment tag, so that browsers that do not support scripting do not render the code as text. Functions used by the document are usually defined in the HEAD tag so that they are loaded and available before the user could do anything that might call them.    •
  373. example <SCRIPT>    <SCRIPT LANGUAGE="language"><!-- script statements --></SCRIPT>    •
  374. html <SELECT>    To be filled in at a later date <Form Select>    •
  375. html <SMALL>    <Small Text> The small text tag defines text that should be displayed in a smaller font than usual.    •
  376. example <SMALL>    <SMALL> text </SMALL>    •
  377. html <SPACER>    <White Space> The SPACER tag creates an area of white space within the document. ( See: html <SPACER attributes> )     •
  378. html <SPACER attributes>    The attributes for this tag are: TYPE, SIZE, WIDTH, HEIGHT, and ALIGN    •
  379. html <SPACER TYPE>    (TYPE=type) The TYPE attribute has three possible values: horizontal (the default,) vertical, and block.    •
  380. html <SPACER SIZE>    (SIZE=pixels) The SIZE attribute only applies when the spacer has a type of horizontal or vertical. Then this attribute controls the absolute width or height in pixels of the spacing added.    •
  381. html <SPACER WIDTH>    (WIDTH=pixels) The WIDTH attribute only applies when the spacer is of type block. Then this attribute controls the absolute width in pixels of the spacing rectangle added.    •
  382. html <SPACER HEIGHT>    (HEIGHT=pixels) The HEIGHT attribute only applies when the spacer is of type block. Then this attribute controls the absolute height in pixels of the spacing rectangle added.    •
  383. html <SPACER ALIGN>    (ALIGN=alignment) The ALIGN attribute only applies when the spacer is of type block. Then this attribute controls the alignment of the spacing rectangle in exactly the same way it would control the alignment of an IMG tag. "alignment" should be one of LEFT, RIGHT, TOP, TEXTTOP, MIDDLE, ABSMIDDLE, BASELINE, BOTTOM, or ABSBOTTOM.    •
  384. html <SPOT>    The spot tag can be used to specify a location in the document where there is no tag.    •
  385. example <SPOT>    <SPOT ID="id">    •
  386. html <STRIKE>    The strikethrough tag defines text that should be shown with a horizontal line through it. It can be nested with other idiomatic or typographic tags but some browsers will respect only the innermost tag.     •
  387. example <STRIKE>    <STRIKE> text </STRIKE>    •
  388. html <STRONG>    The strong tag defines text that should be strongly emphasized -- most browsers will display it in boldface. It can be nested with other idiomatic or typographic tags but some browsers will respect only the innermost tag.    •
  389. example <STRONG>    <STRONG> text </STRONG>    •
  390. html <SUB>    The subscript tag defines text that should be displayed in a smaller font than usual, lower on the line than usual. <Subscript>    •
  391. example <SUB>    <SUB> text </SUB>    •
  392. html <SUP>    The superscript tag defines text that should be displayed in a smaller font than usual, higher on the line than usual. <Superscript>    •
  393. example <SUP>    <SUP> text </SUP>    •
  394. html <TAB>    The horizontal tab tag is used to set or jump to a horizontal tab. The INDENT attribute specifies the amount in en spaces to set this indent to. The align attribute can be one of LEFT, RIGHT, CENTER, or DECIMAL and will position the following text to the tab accordingly. The dp sets the tab to the position that the next character is found The default character is "."    •
  395. example <TAB>    <TAB INDENT=number>  <TAB TO=tab id ALIGN=align>  <TAB DP=character>    •
  396. html <TABLE>    A table consists of an optional caption (CAPTION) and one or more rows (TR.) ( See also: html <TABLE attributes> )    •
  397. example <TABLE>    <TABLE attributes> table-content </TABLE>    •
  398. html <TABLE attributes>    The attributes are: ALIGN, WIDTH, BORDER, CELLPADDING, BGCOLOR, BORDERCOLOR, BORDERCOLORLIGHT, BORDERCOLORDARK, VALIGN, CLEAR, NOFLOW, COLSPEC, UNITS, DP, and NOWRAP    •
  399. html <TABLE ALIGN>    (ALIGN="alignment") This causes the table to be aligned in one of a variety of ways on the page. Here "alignment" should be one of, LEFT: To the left text margin, CENTER: In the centre of the page (Turns on NOFLOW.) RIGHT: To the right text margin, BLEEDRIGHT: To the rightmost edge of the window, BLEEDLEFT: To the leftmost edge of the window, JUSTIFY: To both text margins (The table size is adjusted. Turns on NOFLOW.) *Note that this does not affect the alignment of the table entries*    •
  400. html <TABLE WIDTH>    (WIDTH=number) The UNITS attribute is used to translate number.    •
  401. html <TABLE BORDER>    (BORDER) This attribute causes the table to be drawn with a border. (BORDER=number) This attribute draws the table with a border number pixels thick.    •
  402. html <TABLE CELLPADDING>    (CELLPADDING=number) This separates the cell borders and the text with a padding of number pixels.    •
  403. html <TABLE CELLSPACING>    (CELLSPACING=number) This separates cells with a gutter of number pixels.    •
  404. html <TABLE BGCOLOR>    (BGCOLOR="#rrggbb" -or- BGCOLOR="colorname") This attribute sets the background colour for the entire table.     •
  405. html <TABLE BORDERCOLOR>    (BORDERCOLOR="#rrggbb" -or- BORDERCOLOR="colorname") This attribute sets the border colour for the entire table.    •
  406. html <TABLE BORDERCOLORLIGHT>    (BORDERCOLORLIGHT="#rrggbb" -or- BORDERCOLORLIGHT="colorname") This attribute sets the border highlight colour for the entire table.    •
  407. html <TABLE BORDERCOLORDARK>    (BORDERCOLORDARK="#rrggbb" -or- BORDERCOLORDARK="colorname") This attribute sets the border shadow colour for the entire table.    •
  408. html <TABLE VALIGN>    (VALIGN="valign") This attribute sets the vertical alignment for the entire table. "valign"is TOP or BOTTOM.    •
  409. html <TABLE CLEAR>    (CLEAR=clear) Here "clear" should be one of LEFT, RIGHT, or ALL and specifies which margin should be clear.    •
  410. html <TABLE NOFLOW>    (NOFLOW) This attribute prevents text flow around the table and is equivalent to setting the CLEAR attribute on the element after the table.    •
  411. html <TABLE COLSPEC>    (COLSPEC=colspec) Here colspec is a list of column alignments and widths, separated by spaces. There should be one entry for each column in the table, and each should be an optional capital letter for alignment (one of L (left,) R (right,) C (centre,) J (justify,) or D (decimal)) followed immediately by a number describing the width.    •
  412. html <TABLE UNITS>    (UNITS=units) This makes sense only if the COLSPEC or WIDTH attributes are being used and specifies the units to be used for the column or table widths. units should be one of, en: widths are in en spaces, proportional to font size, relative: column widths are percentage of entire table width, table width is percentage of entire window width, pixels: widths are in pixels    •
  413. html <TABLE DP>    (DP="character") Here "character" is the character (the default is ".") to be used in aligning for decimal point alignment.     •
  414. html <TABLE NOWRAP>    (NOWRAP) This attribute prevents word wrap within table entries.    •
  415. html <TBODY>    The TBODY tag is used to group together a number of rows within a table, for assigning ID or STYLE values. (CLASS=type) This attribute indicates the class that the element belongs too. (ID=value) This attribute specifies a unique value for the element over the docuement. (STYLE=css1 properties) This attribute specifies the style information.    •
  416. example <TBODY>    <TBODY> table body </TBODY>    •
  417. html <TD>    <Table Data> Valid only in a TR, the table data tag defines a table cell. ( See also: html <TD attributes> )    •
  418. html <TD attributes>    The attributes for this tag are: COLSPAN, ROWSPAN, NOWRAP, ALIGN, VALIGN, BGCOLOR, BORDERCOLOR, BORDERCOLORLIGHT, and BORDERCOLORDARK     •
  419. html <TD COLSPAN>    (COLSPAN="number") the number of columns this cell occupies.    •
  420. html <TD ROWSPAN>    (ROWSPAN="number") the number of rows this cell occupies.    •
  421. html <TD NOWRAP>    (NOWRAP) This attribute prevents word wrap within the cell.    •
  422. html <TD ALIGN>    (ALIGN="align") governs the alignment of the text within the table cell. "align" can be LEFT, RIGHT or CENTER.    •
  423. html <TD VALIGN>    (VALIGN="align") governs the alignment of the text within the table cell. "align" can be TOP, MIDDLE, BOTTOM, or BASELINE.    •
  424. html <TD BGCOLOR>    (BGCOLOR="#rrggbb" -or- BGCOLOR="colorname") This attribute sets the background colour for the table cell.    •
  425. html <TD BORDERCOLOR>    (BORDERCOLOR="#rrggbb" -or- BORDERCOLOR="colorname") This attribute sets the border colour for the table cell.    •
  426. html <TD BORDERCOLORLIGHT>    (BORDERCOLORLIGHT="#rrggbb" -or- BORDERCOLORLIGHT="colorname") This attribute sets the border highlight colour for the table cell.     •
  427. html <TD BORDERCOLORDARK>    (BORDERCOLORDARK="#rrggbb" -or- BORDERCOLORDARK="colorname") This attribute sets the border shadow colour for the table cell.    •
  428. html <TEXTAREA>    The text area tag specifies a multiple line text area field within the form that contains it. The NAME attribute is a required field and is used to identify the data for the field. The COLS attribute specifies the width in characters of the text area. The ROWS attribute specifies the number of lines the text area contains. The content is used as an initial value for the field. The field can be scrolled beyond the COLS and ROWS size to allow for larger amounts of text to be entered. (See: html <TEXTAREA> 2)    •
  429. html <TEXTAREA> 2    The wrap attribute can have values of OFF, SOFT and HARD. The 3.0 specification adds three new attributes: DISABLED, ERROR, and ALIGN. The DISABLED attribute shows the field but will not allow the user to modify it. The ERROR attribute is used to supply an error message for the field. The ALIGN attribute is used to position the field and can be one of TOP, BOTTOM, MIDDLE, LEFT or RIGHT    •
  430. example <TEXTAREA>    <TEXTAREA NAME=name COLS=# columns ROWS=# rows> content </TEXTAREA>   <TEXTAREA NAME=name COLS=# columns ROWS=# rows WRAP=type> content </TEXTAREA>    •
  431. html <TEXTFLOW>    <Java Applet Textflow> if an APPLET element has no ordinary text and markup in its applet-content, and contains only PARAM tags, comments, and whitespace, you should add a TEXTFLOW tag. This tag will be ignored by Web browsers but will keep SGML parsers happy.    •
  432. html <TFOOT>    Defines the table footer. The footer tag is used to group all footers. (CLASS=type) This attribute indicates the class that the element belongs too. (ID=value) This attribute specifies a unique value for the element over the document. (STYLE=css1 properties) This attribute specifies style the information    •
  433. html <TH>    Valid only in a TR, the table header tag defines a header cell. <Table Header> (See also: html <TH attributes>)     •
  434. html <TH attributes>    The attributes for this tag are: COLSPAN, ROWSPAN, NOWRAP, ALIGN, VALIGN, BGCOLOR, BORDERCOLOR, BORDERCOLORLIGHT, and BORDERCOLORDARK    •
  435. html <TH COLSPAN>    (COLSPAN="number") the number of columns this header occupies.    •
  436. html <TH ROWSPAN>    (ROWSPAN="number") the number of rows this header occupies.    •
  437. html <TH NOWRAP>    (NOWRAP) This attribute prevents word wrap within the cell.    •
  438. html <TH ALIGN>    (ALIGN="align") governs the alignment of the text within the table cell. "align" can be LEFT, RIGHT or CENTER. Table Header cells default to centred.    •
  439. html <TH VALIGN>    (VALIGN="align") governs the alignment of the text within the table cell. "align" can be TOP, MIDDLE, BOTTOM, or BASELINE.    •
  440. html <TH BGCOLOR>    (BGCOLOR="#rrggbb" -or- BGCOLOR="colorname") This attribute sets the background colour for the header cell.    •
  441. html <TH BORDERCOLOR>    (BORDERCOLOR="#rrggbb" -or- BORDERCOLOR="colorname") his attribute sets the border colour for the header cell.    •
  442. html <TH BORDERCOLORLIGHT>    (BORDERCOLORLIGHT="#rrggbb" -or- BORDERCOLORLIGHT="colorname") This attribute sets the border highlight colour for the header cell.    •
  443. html <TH BORDERCOLORDARK>    (BORDERCOLORDARK="#rrggbb" -or- BORDERCOLORDARK="colorname") This attribute sets the border shadow colour for the header cell.    •
  444. html <THEAD>    The THEAD tag defines the table heading. The THEAD tag is used to group all headers together. <Table Head> ( See also: html <THEAD attributes> )    •
  445. html <THEAD attributes>    The attributes for this tag are: ALIGN, CLASS, ID, STYLE, and VALIGN    •
  446. html <THEAD ALIGN>    (ALIGN=left, center, right, justify) Specifies the alignment of text in the heading, the default is center.    •
  447. html <THEAD CLASS>    (CLASS=type) This attribute indicates the class that the element belongs too.    •
  448. html <THEAD ID>    (ID=value) This attribute specifies a unique value for the element over the document.    •
  449. html <THEAD STYLE>    (STYLE=css1 properties) This attribute specifies style the information    •
  450. html <THEAD VALIGN>    (VALIGN=middle/top/bottom) This attribute specifies the verticle alignment of text in the heading. The default is middle.     •
  451. html <TITLE>    The title tag, which is only valid in a HEAD section, defines the title of an HTML document. A title should be chosen that makes sense with no context; for example Introduction is a poor title since it contains no indication of the subject matter it discusses. Netscape displays document titles in the application's title bar and in bookmark lists.    •
  452. example <TITLE>    <TITLE> title-text </TITLE>    •
  453. html <TR>    Valid only in a TABLE, the table row tag defines a row of cells that are defined with TH and TD tags. <Table Row> ( See also: html <TR attributes> )    •
  454. html <TR attributes>    The attributes for this tag are: ALIGN, VALIGN, BGCOLOR, BORDERCOLOR, BORDERCOLORLIGHT, BORDERCOLORDARK, and CLASS    •
  455. html <TR ALIGN>    (ALIGN="align") governs the alignment of the text within the table cell. "align" can be LEFT, RIGHT or CENTER.    •
  456. html <TR VALIGN>    (VALIGN="align") governs the alignment of the text within the table cell. "align" can be TOP, MIDDLE, BOTTOM, or BASELINE.    •
  457. html <TR BGCOLOR>    (BGCOLOR="#rrggbb" -or- BGCOLOR="colorname") This attribute sets the background colour for the table row.    •
  458. html <TR BORDERCOLOR>    (BORDERCOLOR="#rrggbb" -or- BORDERCOLOR="colorname") This attribute sets the border colour for the table row.    •
  459. html <TR BORDERCOLORLIGHT>    (BORDERCOLORLIGHT="#rrggbb" -or- BORDERCOLORLIGHT="colorname") This attribute sets the border highlight colour for the table row.    •
  460. html <TR BORDERCOLORDARK>    (BORDERCOLORDARK="#rrggbb" -or- BORDERCOLORDARK="colorname") This attribute sets the border shadow colour for the table row.    •
  461. html <TR CLASS>    (CLASS="class") class is one of Header, Body, or Footer and allows the browser to arrange for header or footer rows to be displayed as the user scrolls through the document.    •
  462. html <TT>    The teletype tag defines text that should be shown in a fixed width font. It can be nested with other idiomatic or typographic tags but some browsers will respect only the innermost tag. Many browsers use the same font for the KBD, SAMP, TT and CODE tags. For many lines of fixed width text, with the line breaks and other whitespace specified by the page author, use the PRE tag.    •
  463. example <TT>    <TT> text </TT>    •
  464. html <U>    The underlined tag defines text that should be shown with a line underneath it. It can be nested with other idiomatic or typographic tags but some browsers will respect only the innermost tag. Many browsers, including some versions of Netscape, do not support this tag.    •
  465. example <U>    <U> text </U>    •
  466. html <UL>    The unordered list tag introduces an unordered (bulleted) list, which is made up of List Item (LI) tags. <UL> list entries </UL>     •
  467. html <UL attributes>    The attributes for this tag are: COMPACT, SRC, DINGBAT, PLAIN, WRAP, and TYPE    •
  468. html <UL COMPACT>    The COMPACT attribute instructs the browser to reduce the space occupied by the list. For a numbered list use OL. For a list without bullets or numbers use MENU. For a list without bullets or numbers made up of short items that can be arranged into columns use DIR. <UL COMPACT> list entries </UL>    •
  469. html <UL SRC>    The SRC attribute identifies a graphic image to be used as a bullet. <UL SRC="URL" > list entries </UL>    •
  470. html <UL DINGBAT>    the DINGBAT attribute identifies an iconic entity for the bullet. UL DINGBAT="entity-name" > list entries </UL>    •
  471. html <UL PLAIN>    The PLAIN attribute specifies not to use a bullet on each item. <UL PLAIN>    •
  472. html <UL WRAP>    The WRAP attribute is either VERT or HORIZ, and indicates multiple columns of data. VERT indicates that the data is to go down the page and then wrap to the next column, and HORIZ indicates that the data is to wrap across each row. <UL WRAP=type>    •
  473. html <UL TYPE>    The TYPE attribute specifies the bullet type; type can be DISC, CIRCLE, or SQUARE. <UL TYPE=type > list entries </UL>    •
  474. html <VAR>    The variable tag defines text that represents a variable-- most browsers will display it in italics. It can be nested with other idiomatic or typographic tags but some browsers will respect only the innermost tag.    •
  475. example <VAR>    <VAR> text </VAR>    •
  476. html <WBR>    The word break tag identifies a place where a word can be broken, or where a line can be broken within a NOBR block.    •
  477. html <XMP>    The example tag introduces example text. Because of the way this tag handles embedded tags, it should no longer be used. PRE or SAMP are better choices.    •
  478. example <XMP>    <XMP> text </XMP>    •
  479.